7628ea992ff594079e3610d3ec4ec428e5d57da7,core/src/main/java/com/orientechnologies/orient/core/sql/OCommandExecutorSQLAbstract.java,OCommandExecutorSQLAbstract,getInvolvedClustersOfIndex,#String#,177

Before Change


        final OClass cls = metadata.getImmutableSchemaSnapshot().getClass(clazz);
        if (cls != null)
          for (int clId : cls.getClusterIds()) {
            clusters.add(db.getClusterNameById(clId).toLowerCase());
          }
      }
    }

After Change


        final OClass cls = metadata.getImmutableSchemaSnapshot().getClass(clazz);
        if (cls != null)
          for (int clId : cls.getClusterIds()) {
            final String clName = db.getClusterNameById(clId);
            if (clName != null)
              clusters.add(clName.toLowerCase());
          }
      }